UNPKG

@flex-development/pathe

Version:

Universal drop-in replacement for node:path

13 lines (12 loc) 238 B
/** * @file Type Aliases - Ext * @module pathe/types/Ext */ import type { Dot } from '@flex-development/pathe'; /** * File extension schema. * * @see {@linkcode Dot} */ type Ext = `${Dot}${string}`; export type { Ext as default };