ez-common-ts/lib/index.d.ts

5 lines
524 B
TypeScript
Raw Normal View History

2023-11-11 21:28:01 +08:00
import { withRecord, assignRecords, RecordClearMode } from "./commons/record-util";
2024-01-28 18:33:16 +08:00
import { stringTokenizer, equalsIgnoreCase, includeIgnoreCase, strLength, strMonospacePad } from "./commons/str-utils";
2023-11-14 16:17:22 +08:00
import { getFileExt, getFileFullName, getFileNameWithoutExt, getFileInfo } from "./commons/file-util";
2024-01-28 18:33:16 +08:00
export { stringTokenizer, withRecord, equalsIgnoreCase, includeIgnoreCase, assignRecords, RecordClearMode, getFileExt, getFileFullName as getFileName, getFileNameWithoutExt, getFileInfo, strLength, strMonospacePad };