Interface ClientOptions

interface ClientOptions {
    cache?: {
        interval: number;
    };
    json?: {
        spaces?: number;
    };
    path: `${string}.json`;
}

Properties

Properties

cache?: {
    interval: number;
}

Type declaration

  • interval: number
json?: {
    spaces?: number;
}

Type declaration

  • Optional spaces?: number
path: `${string}.json`