mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 23:46:03 +01:00
fix(package/locale): types
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
import { cache } from '../cache/index';
|
import { cache } from '../cache/index';
|
||||||
import { printf } from 'fast-printf';
|
import { printf } from 'fast-printf';
|
||||||
|
|
||||||
const dict: { [key: string]: string | number } = {};
|
const dict: Record<string, string> = {};
|
||||||
|
|
||||||
export const locale = (str: keyof typeof dict, ...args: any[]) => {
|
export const locale = (str: string, ...args: any[]) => {
|
||||||
const lstr = dict[str];
|
const lstr = dict[str];
|
||||||
|
|
||||||
if (!lstr) return str;
|
if (!lstr) return str;
|
||||||
|
|||||||
Reference in New Issue
Block a user