Skip to content

Commit 29c7374

Browse files
Build
1 parent 1c0fe4f commit 29c7374

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

dist/types/index.d.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { CSSProperties, Ref } from 'vue';
22
import type { VBtn, VCheckbox, VSelect, VSwitch, VTextField, VTextarea } from 'vuetify/components';
33
import type { IconOptions } from 'vuetify';
44
import type { EventBusKey } from '@vueuse/core';
5-
import { AxiosError } from 'axios';
65
export type AlignItems = 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'flex-start' | 'flex-end' | 'self-start' | 'self-end' | 'baseline' | 'first baseline' | 'last baseline' | 'safe center' | 'unsafe center' | 'inherit' | 'initial' | 'revert' | 'revert-layer' | 'unset';
76
export type FieldValue = string | boolean | number | object | [] | null | {
87
[key: string]: string | unknown;
@@ -171,22 +170,6 @@ export interface UseDisplayValueStyles {
171170
underlined: SharedProps['underlined'];
172171
}): CSSProperties;
173172
}
174-
export interface UseSaveValue {
175-
(options: {
176-
settings: {
177-
[key: string]: string | unknown;
178-
};
179-
emit: {
180-
(e: 'loading', response: boolean): void;
181-
(e: 'error', error: AxiosError): AxiosError;
182-
(e: 'update', response: unknown): void;
183-
};
184-
name: SharedProps['name'];
185-
value: FieldValue;
186-
}): Promise<{
187-
[key: string]: string | unknown;
188-
} | undefined>;
189-
}
190173
export interface UseToggleField {
191174
(options: {
192175
attrs: object;

0 commit comments

Comments
 (0)