UNPKG

@replygirl/vanity

Version:

simple, reactive state management for any framework using @vue/reactivity

6 lines (5 loc) 209 B
import type { Dictionary } from 'dictionary-types'; export declare type Entry<T> = { [K in keyof T]: [K, T[K]]; }[keyof T]; export declare const entries: <T = Dictionary<any, string>>(x: T) => Entry<T>[];