mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
17 lines
321 B
TypeScript
17 lines
321 B
TypeScript
|
import {AppModel} from 'app/client/models/AppModel';
|
||
|
import {DomElementArg} from 'grainjs';
|
||
|
|
||
|
export function buildUserMenuBillingItem(
|
||
|
_appModel: AppModel,
|
||
|
..._args: DomElementArg[]
|
||
|
) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
export function buildAppMenuBillingItem(
|
||
|
_appModel: AppModel,
|
||
|
..._args: DomElementArg[]
|
||
|
) {
|
||
|
return null;
|
||
|
}
|