// https://unocss.dev/presets/attributify#vue-3 // https://github.com/unocss/unocss/pull/4095 // type BasicAttributesFix = import('@unocss/preset-attributify').BasicAttributes | 'b'; // type AttributifyNames = // | `${Prefix}${BasicAttributesFix}` // | `${Prefix}${PseudoPrefix}:${BasicAttributes}`; // declare module '@vue/runtime-dom' { // interface HTMLAttributes extends Partial> {} // } declare module 'vue' { // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface HTMLAttributes extends Partial> {} } export {};