7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
|
declare namespace prefix {
|
||
|
function dash(name: string): string;
|
||
|
}
|
||
|
declare function prefix(name: string): string;
|
||
|
|
||
|
export = prefix;
|