scaffold-scripts
Version:
Simple CLI tool for managing and running your own scripts. Add any script, run it anywhere.
30 lines • 740 B
TypeScript
interface SymbolMap {
[key: string]: {
emoji: string;
fallback: string;
};
}
declare const symbols: SymbolMap;
export declare function getSymbol(name: keyof typeof symbols): string;
export declare const sym: {
rocket: () => string;
package: () => string;
check: () => string;
cross: () => string;
warning: () => string;
search: () => string;
list: () => string;
trash: () => string;
bulb: () => string;
book: () => string;
party: () => string;
memo: () => string;
wrench: () => string;
folder: () => string;
page: () => string;
diamond: () => string;
target: () => string;
info: () => string;
};
export {};
//# sourceMappingURL=symbols.d.ts.map