Files
boc/cc-frontend/node_modules/remove-accents/index.d.ts
T

9 lines
161 B
TypeScript
Raw Normal View History

interface RemoveAccents {
(part: string): string;
remove(part: string): string;
has(part: string): boolean;
}
declare var dm: RemoveAccents;
export = dm;