Skip to content

Commit e8f9a1c

Browse files
committed
Add dist folder.
1 parent 1f712d3 commit e8f9a1c

File tree

159 files changed

+2460
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+2460
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# misc
99
npm-debug.log
1010
# folders
11-
/dist
1211
/node_modules
1312
docs/_build/
1413
__pycache__/

dist/index.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export * from './lib/errors';
2+
export * from './lib/grant-types';
3+
export * from './lib/handlers';
4+
export * from './lib/interfaces';
5+
export { Request } from './lib/request';
6+
export { Response } from './lib/response';
7+
export * from './lib/response-types';
8+
export { OAuth2Server } from './lib/server';
9+
export * from './lib/token-types';
10+
export * from './lib/validator/is';

dist/index.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/constants/common.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export declare const MILLISECONDS_PER_SECOND = 1000;
2+
export declare const SECONDS_PER_MINUTE = 60;
3+
export declare const MINUTES_PER_HOUR = 60;
4+
export declare const HOURS_PER_DAY = 24;
5+
export declare const DAYS_PER_WEEK = 7;
6+
export declare const MONTHS_PER_YEAR = 12;
7+
export declare const SECOND = 1000;
8+
export declare const MINUTE: number;
9+
export declare const HOUR: number;
10+
export declare const DAY: number;
11+
export declare const WEEK: number;

dist/lib/constants/common.js

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/constants/common.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/constants/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './common';

dist/lib/constants/index.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/constants/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)