@larva.io/webcomponents
Version:
Fentrica SmartUnits WebComponents package
31 lines (30 loc) • 661 B
TypeScript
export interface LarvaConfig {
/**
* When it's set to `false`, disables all animation and transition across the app.
* Can be useful to make ionic smoother in slow devices, when animations can't run smoothly.
*/
animated?: boolean;
/**
* Defaults to `true`.
*/
swipeBack?: boolean;
/**
*/
formatDateTime?: string;
/**
*/
formatLongDate?: string;
/**
*/
formatShortDate?: string;
/**
*/
formatLongTime?: string;
/**
*/
formatShortTime?: string;
/**
*/
persistConfig?: boolean;
}
export declare const setupConfig: (config: LarvaConfig) => any;