UNPKG

vue-city-pinyin

Version:
9 lines (8 loc) 327 B
type BEMType = string | [string, 'B' | 'E' | 'M', ...unknown[]]; export default function useClassName(componentName: string): { c: (...arg: BEMType[]) => string; ce: (e: string) => BEMType; cm: (m: string) => BEMType; cx: (cls: () => Record<string, boolean>) => import('vue').ComputedRef<string>; }; export {};