mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
//#region src/core/i18n/text/common.d.ts
|
|
declare const emptyText: {
|
|
readonly key: "common.empty";
|
|
readonly text: '';
|
|
};
|
|
declare const okText: {
|
|
readonly key: "common.ok";
|
|
readonly text: 'OK';
|
|
};
|
|
//#endregion
|
|
export { emptyText, okText };
|
|
//# sourceMappingURL=common.d.ts.map
|