Skip to content

Commit 7253f43

Browse files
Merge pull request #50 from codedbychavez/april-2025-updates
April 2025 Updates
2 parents 4ab001e + 4fd5218 commit 7253f43

File tree

5 files changed

+1358
-1096
lines changed

5 files changed

+1358
-1096
lines changed

dist/components/FeatureWrapper.vue.d.ts

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
import { User } from '@configcat/sdk';
2-
declare function __VLS_template(): {
3-
default?(_: {}): any;
4-
else?(_: {}): any;
5-
loading?(_: {}): any;
6-
};
7-
declare const __VLS_component: import('vue').DefineComponent<{
2+
type __VLS_Props = {
83
featureKey: string;
94
userObject?: User;
10-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5+
};
6+
declare function __VLS_template(): {
7+
attrs: Partial<{}>;
8+
slots: {
9+
default?(_: {}): any;
10+
else?(_: {}): any;
11+
loading?(_: {}): any;
12+
};
13+
refs: {};
14+
rootEl: any;
15+
};
16+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
1118
flagValueChanged: (newValue: boolean) => any;
12-
}, string, import('vue').PublicProps, Readonly<{
13-
featureKey: string;
14-
userObject?: User;
15-
}> & Readonly<{
19+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
1620
onFlagValueChanged?: ((newValue: boolean) => any) | undefined;
1721
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
22+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1923
export default _default;
20-
2124
type __VLS_WithTemplateSlots<T, S> = T & {
2225
new (): {
2326
$slots: S;

0 commit comments

Comments
 (0)