-
-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
Description
Having a TypeScript type definition file would be nice. Without it I have to write my own type definition file or use // @ts-ignore above the import.
Only one short file is needed:
// index.d.ts
declare module 'default-shell' {
declare const defaultShell: string // probably could also be "let" instead of "const"
export default defaultShell
}