UNPKG

@blacksquareui/compiler

Version:

This is a package for creating css file from classes

28 lines (27 loc) 546 B
export type configType = { settings: { unit: string; }; screens: ScreenSize[]; content: ClassContentType; props: Array<GeneralClassType>; }; export type ScreenSize = { name: string; size: string; }; export type ClassContentType = { sourceDir: string; fileExtension: string; outputFile: string; }; export type GeneralClassType = { name: string; type: string; val: string | number; direction?: string[]; min?: number; property: string; max?: number; step?: number; };