|
@@ -5,6 +5,8 @@ export * from './core/catalogue'
|
|
export * from './components'
|
|
export * from './components'
|
|
export * from './types'
|
|
export * from './types'
|
|
|
|
|
|
|
|
+import { normalizeColor, normalizeVectorFlexibleParam } from './utils/normalize'
|
|
|
|
+
|
|
export interface TresOptions {
|
|
export interface TresOptions {
|
|
extends?: Record<string, unknown>
|
|
extends?: Record<string, unknown>
|
|
}
|
|
}
|
|
@@ -21,3 +23,5 @@ const plugin: TresPlugin = {
|
|
}
|
|
}
|
|
|
|
|
|
export default plugin
|
|
export default plugin
|
|
|
|
+
|
|
|
|
+export { normalizeColor, normalizeVectorFlexibleParam }
|