Skip to content

Commit b7c2072

Browse files
committed
Update LogService and add componentDeprecationWarn
1 parent 17dc95b commit b7c2072

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

generatedTypes/src/services/LogService.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ declare function deprecationWarn({ component, oldProp, newProp }: {
44
oldProp: string;
55
newProp?: string;
66
}): void;
7+
declare function componentDeprecationWarn({ oldComponent, newComponent }: {
8+
oldComponent: string;
9+
newComponent: string;
10+
}): void;
711
declare const _default: {
812
warn: typeof warn;
913
deprecationWarn: typeof deprecationWarn;
14+
componentDeprecationWarn: typeof componentDeprecationWarn;
1015
};
1116
export default _default;

0 commit comments

Comments
 (0)