@pilotlab/data
Version:
A luxurious user experience framework, developed by your friends at Pilot.
17 lines (12 loc) • 482 B
text/typescript
import { INodeCreateOptions } from '@pilotlab/nodes';
import { DataType } from '../attributeEnums';
import IAttributeChangeOptions from './iAttributeChangeOptions';
export interface IAttributeCreateOptions extends INodeCreateOptions {
value:any;
dataType:(DataType | string);
isEditable:boolean;
isHidden:boolean;
omitFromDataStore:(value:any) => boolean;
changeOptions:IAttributeChangeOptions;
} // End interface
export default IAttributeCreateOptions;