Locales

Signature

export declare function Locales({ name: names, description: descriptions, }: {    name?: [        language: LocaleString,        value: string    ][];    description?: [        language: LocaleString,        value: string    ][];}): <T extends {    new (...args: any[]): object;}>(target: T) => {    new (...args: any[]): {        name_localizations: {            [k: string]: string;        } | undefined;        description_localizations: {            [k: string]: string;        } | undefined;    };} & T;

Members

This export does not declare public properties or methods in the generated declaration file.