@pilotlab/data
Version:
A luxurious user experience framework, developed by your friends at Pilot.
16 lines (15 loc) • 807 B
TypeScript
import { INodeFactory } from '@pilotlab/nodes';
import IAttributesFactory from './iAttributesFactory';
import IAttributeCreateOptions from './iAttributeCreateOptions';
import IAttribute from './iAttribute';
export interface IAttributeFactory extends INodeFactory {
collection: IAttributesFactory;
getBaseDataType(dataType: string): string;
instance(createOptions?: IAttributeCreateOptions): IAttribute;
fromAny(value: (IAttribute | Object | string), ...args: any[]): IAttribute;
fromString(value: string, parseString?: (data: string) => IAttribute, ...args: any[]): IAttribute;
fromJson(value: string, ...args: any[]): IAttribute;
fromObject(value: Object, ...args: any[]): IAttribute;
fromArray(value: any[], ...args: any[]): IAttribute;
}
export default IAttributeFactory;