123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { IgnoreOrMatch } from 'egg';
- import { SignOptions, SignCallback, VerifyOptions, VerifyCallback } from 'jsonwebtoken';
- declare module 'egg' {
- interface Application {
- jwt: {
- /**
- * call jsonwebtoken's sign() method
- * @param payload datas. datas to be signed
- * @param secretOrPrivateKey secret key. string or { key, passphrase }
- * @param options jwt options。see more details in https://github.com/auth0/node-jsonwebtoken
- * @param callback callback
- */
- sign(
- payload: string | Buffer | object,
- secretOrPrivateKey: string,
- options?: SignOptions,
- callback?: SignCallback
- ): string;
- /**
- * call jsonwebtoken's verify() method
- * @param token jwt token.
- * @param secretOrPrivateKey secret key。string or { key, passphrase }
- * @param options jwt options。see more details in https://github.com/auth0/node-jsonwebtoken
- * @param callback callback
- */
- verify(token: string, secretOrPrivateKey: string, options?: VerifyOptions, callback?: VerifyCallback): string;
- /**
- * call jsonwebtoken's decode() method
- * @param token jwt token
- */
- decode(token: string): string;
- };
- }
- interface EggAppConfig {
- jwt: {
- secret: string;
- enable?: boolean;
- sign?: SignOptions;
- verify?: VerifyOptions;
- ignore?: IgnoreOrMatch;
- match?: IgnoreOrMatch;
- };
- }
- }
|