diff --git a/index.ts b/index.ts index 385b499..670bedc 100644 --- a/index.ts +++ b/index.ts @@ -1,2 +1 @@ -export * as JWT from 'jwt' -export * as pwd from 'pwd' +export * as pwd from './src/pwd' diff --git a/src/jwt.ts b/src/jwt.ts deleted file mode 100644 index 92a7c36..0000000 --- a/src/jwt.ts +++ /dev/null @@ -1,10 +0,0 @@ -import {Result} from 'result' - -export type JWT = `${string}.${string}.${string}` - -export function create() : Result { - throw "todo" -} -export function verify() : boolean { - throw "todo" -}