ng-gpt
Version:
A Angular implementation of the google GPT API.
8 lines (7 loc) • 368 B
TypeScript
export declare type SingleSizeArray = number[];
export declare type NamedSize = string | string[];
export declare type SingleSize = SingleSizeArray | NamedSize;
export declare type MultiSize = SingleSize[];
export declare type GeneralSize = SingleSize | MultiSize;
export declare type SizeMapping = GeneralSize[];
export declare type SizeMappingArray = SizeMapping[];