export type FileMeta = {}; export type ReadResponse = { meta: FileMeta; data: any; }; export type PercentageOptionsType = { highestRepresentation?: 1 | 100; decimal?: boolean; decimalPlaces?: number; }; export type OptionsType = { highestRepresentation: 1 | 100; decimal: boolean; decimalPlaces?: number; }; export type PrintMoneyOptionsType = { symbol: boolean; decimal: number; hasDecimal: boolean; autoDecimal: boolean; }; export type IResponseState = { ok: boolean; message: string; }; type Modifier = (arg: T) => K; export interface ToObjectInterface { toObject(modifier?: Modifier): T | K; } export interface ToObjectProtectedInterface { _toObject(modifier?: Modifier): T | K; __toObject(): T; } export {}; //# sourceMappingURL=types.d.ts.map