7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
|
/**
|
||
|
* @deprecated Use `IProcessedStyleSet` from `@fluentui/style-utilities` or `@fluentui/merge-styles` instead.
|
||
|
*/
|
||
|
export type IClassNames<T> = {
|
||
|
[key in keyof T]: string;
|
||
|
};
|