From f624603f66efc5c262f2cdc4b00732d22cc2d8ef Mon Sep 17 00:00:00 2001 From: huangfengli Date: Wed, 7 Jul 2021 17:57:08 +0800 Subject: [PATCH] fix: add missing options.customStyleName --- src/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.d.ts b/src/index.d.ts index 567c470..0805c5c 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -5,6 +5,7 @@ export interface Options { style?: string | boolean | ((name: string, file?: any) => string); styleLibraryDirectory?: string; customName?: (name: string, file: any) => string; + customStyleName?: (name: string) => string; libraryDirectory?: string; camel2DashComponentName?: boolean; }