@-xun/common-dummies
Version:
A collection of dummy projects, packages, and other testable structures
10 lines • 415 B
TypeScript
import type { AbsolutePath } from '@-xun/fs';
/**
* A type representing the name of an available dummy file containing
* pseudodecorators.
*/
export type PseudodecoratorFileName = 'extensionless' | 'js' | 'json' | 'md' | 'ts' | 'yml';
/**
* Return a path to an analyzable file containing one or more pseudodecorators.
*/
export declare function getDummyDecoratedPath(id: PseudodecoratorFileName): AbsolutePath;