Skip to content

Commit f50277e

Browse files
wip(core): no need to export Loading & throwNotDefined
1 parent 83782e0 commit f50277e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const version : string = process.env.VERSION;
1414
/**
1515
* @internal
1616
*/
17-
export class Loading {
17+
class Loading {
1818

1919
promise : Promise<ModuleExport>;
2020

@@ -28,7 +28,7 @@ export class Loading {
2828
/**
2929
* @internal
3030
*/
31-
export function throwNotDefined(details : string) : never {
31+
function throwNotDefined(details : string) : never {
3232

3333
throw new ReferenceError(`${ details } is not defined`);
3434
}

0 commit comments

Comments
 (0)