6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
28 lines
661 B
TypeScript
28 lines
661 B
TypeScript
declare namespace path {
|
|
export const sep: '/' | '\\'
|
|
export const delimiter: ':' | ';'
|
|
|
|
export function basename(path: string, suffix?: string): string
|
|
|
|
export function dirname(path: string): string
|
|
|
|
export function extname(path: string): string
|
|
|
|
export function isAbsolute(path: string): boolean
|
|
|
|
export function join(...paths: string[]): string
|
|
|
|
export function normalize(path: string): string
|
|
|
|
export function relative(from: string, to: string): string
|
|
|
|
export function resolve(...args: string[]): string
|
|
|
|
export function toNamespacedPath(path: string): string
|
|
|
|
export const posix = path
|
|
export const win32 = path
|
|
}
|
|
|
|
export = path
|