Don't export types from switchable
This commit is contained in:
parent
269c96832b
commit
8e8447d2f9
|
@ -1,8 +1,6 @@
|
||||||
import type {IBls, Implementation} from "./interface.js";
|
import type {IBls, Implementation} from "./interface.js";
|
||||||
import {getImplementation} from "./getImplementation.js";
|
import {getImplementation} from "./getImplementation.js";
|
||||||
|
|
||||||
export * from "./interface.js";
|
|
||||||
|
|
||||||
// TODO: Use a Proxy for example to throw an error if it's not initialized yet
|
// TODO: Use a Proxy for example to throw an error if it's not initialized yet
|
||||||
const bls: IBls = {} as IBls;
|
const bls: IBls = {} as IBls;
|
||||||
export default bls;
|
export default bls;
|
||||||
|
|
Reference in New Issue