mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 04:17:58 +00:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
interface TOptions {
|
|
ns?: string;
|
|
replace?: Record<string, unknown>;
|
|
}
|
|
interface Translation {
|
|
t: (key: string, optionsOrText?: string | TOptions, options?: TOptions) => string;
|
|
}
|
|
export declare function useTranslation(): Translation;
|
|
export {};
|