12 lines
394 B
Plaintext
12 lines
394 B
Plaintext
import type { ConfigureOptions } from './types';
|
|
interface Formats {
|
|
number: Record<string, any>;
|
|
date: Record<string, any>;
|
|
time: Record<string, any>;
|
|
}
|
|
export declare const defaultFormats: Formats;
|
|
export declare const defaultOptions: ConfigureOptions;
|
|
export declare function getOptions(): ConfigureOptions;
|
|
export declare function init(opts: ConfigureOptions): void;
|
|
export {};
|