@foxpage/foxpage-manager
Version:
foxpage resource manager
13 lines (12 loc) • 340 B
TypeScript
import { Variable, VariableItem } from '@foxpage/foxpage-types';
import { ContentDetailInstance } from '../common';
/**
* variable
*
* @export
* @class Variable
*/
export declare class VariableInstance extends ContentDetailInstance<VariableItem> implements Variable {
readonly type = "variable";
constructor(data: Variable);
}