chore: update types

This commit is contained in:
Benjamin Canac
2021-12-15 13:07:11 +01:00
parent c6dcbd1b2b
commit befa0b37fc
8 changed files with 492 additions and 261 deletions

View File

@@ -1,3 +1,31 @@
export * from './notifications'
export * from './organizations'
export * from './users'
import type { UnocssNuxtOptions } from '@unocss/nuxt'
export interface UiColorsOptions {
/**
* @default 'indigo'
*/
primary?: string
/**
* @default 'zinc'
*/
gray?: string
}
export interface UiOptions {
/**
* @default 'tailwindui'
*/
preset?: string | object
/**
* @default 'u'
*/
prefix?: string
colors?: UiColorsOptions
unocss?: UnocssNuxtOptions
}
export * from './toast'