interface ISettings {
    app: {
        description: string;
        title: string;
    };
    provider: {
        client: string;
        name: string;
        secret: string;
    };
}

Properties

Properties

app: {
    description: string;
    title: string;
}

Type declaration

  • description: string
  • title: string
provider: {
    client: string;
    name: string;
    secret: string;
}

Type declaration

  • client: string
  • name: string
  • secret: string