mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
19 lines (18 loc) • 465 B
TypeScript
/**
* Returns the base name of a file path.
*
* Path/To/My/File.ext => File.ext
*/
export declare function basename(path: string): string;
/**
* Returns the extension name of a file path.
*
* Path/To/My/File.ext => .ext
*/
export declare function extname(path: string): string;
/**
* Returns the base name of a file path without the extension.
*
* Path/To/My/File.ext => File
*/
export declare function filename(path: string): string;