diff --git a/src/index.ts b/src/index.ts index 245c09d..06972f1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ import Choices from './scripts/choices'; +export * from './scripts/interfaces'; export * from './scripts/constants'; export * from './scripts/defaults'; export { default as templates } from './scripts/templates'; diff --git a/src/scripts/interfaces/index.ts b/src/scripts/interfaces/index.ts new file mode 100644 index 0000000..0ddaf6f --- /dev/null +++ b/src/scripts/interfaces/index.ts @@ -0,0 +1,15 @@ +export * from './action-type'; +export * from './choice'; +export * from './choices'; +export * from './class-names'; +export * from './event-type'; +export * from './group'; +export * from './item'; +export * from './keycode-map'; +export * from './notice'; +export * from './options'; +export * from './passed-element'; +export * from './passed-element-type'; +export * from './position-options-type'; +export * from './state'; +export * from './types';