@builder.io/sdk-vue
Version:
Builder.io SDK for Vue
43 lines (42 loc) • 1.16 kB
TypeScript
import { isEditing } from "../../../functions/is-editing";
import { filterAttrs } from "../../helpers";
/**
* This import is used by the Svelte SDK. Do not remove.
*/
export interface FormSelectProps {
options?: {
name?: string;
value: string;
}[];
attributes?: any;
name?: string;
value?: string;
defaultValue?: string;
required?: boolean;
}
declare const _default: import("vue").DefineComponent<Readonly<{
name?: any;
value?: any;
options?: any;
attributes?: any;
defaultValue?: any;
required?: any;
}>, unknown, {
isEditing: typeof isEditing;
filterAttrs: typeof filterAttrs;
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
name?: any;
value?: any;
options?: any;
attributes?: any;
defaultValue?: any;
required?: any;
}>>>, {
readonly name?: any;
readonly value?: any;
readonly options?: any;
readonly attributes?: any;
readonly defaultValue?: any;
readonly required?: any;
}, {}>;
export default _default;