⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
vue
/
types
/
View File Name :
v3-setup-helpers.d.ts
import { EmitFn, EmitsOptions } from './v3-setup-context' import { ComponentObjectPropsOptions, ExtractPropTypes } from './v3-component-props' /** * Vue `<script setup>` compiler macro for declaring component props. The * expected argument is the same as the component `props` option. * * Example runtime declaration: * ```js * // using Array syntax * const props = defineProps(['foo', 'bar']) * // using Object syntax * const props = defineProps({ * foo: String, * bar: { * type: Number, * required: true * } * }) * ``` * * Equivalent type-based declaration: * ```ts * // will be compiled into equivalent runtime declarations * const props = defineProps<{ * foo?: string * bar: number * }>() * ``` * * This is only usable inside `<script setup>`, is compiled away in the * output and should **not** be actually called at runtime. */ // overload 1: runtime props w/ array export function defineProps<PropNames extends string = string>( props: PropNames[] ): Readonly<{ [key in PropNames]?: any }> // overload 2: runtime props w/ object export function defineProps< PP extends ComponentObjectPropsOptions = ComponentObjectPropsOptions >(props: PP): Readonly<ExtractPropTypes<PP>> // overload 3: typed-based declaration export function defineProps<TypeProps>(): Readonly<TypeProps> /** * Vue `<script setup>` compiler macro for declaring a component's emitted * events. The expected argument is the same as the component `emits` option. * * Example runtime declaration: * ```js * const emit = defineEmits(['change', 'update']) * ``` * * Example type-based declaration: * ```ts * const emit = defineEmits<{ * (event: 'change'): void * (event: 'update', id: number): void * }>() * * emit('change') * emit('update', 1) * ``` * * This is only usable inside `<script setup>`, is compiled away in the * output and should **not** be actually called at runtime. */ // overload 1: runtime emits w/ array export function defineEmits<EE extends string = string>( emitOptions: EE[] ): EmitFn<EE[]> export function defineEmits<E extends EmitsOptions = EmitsOptions>( emitOptions: E ): EmitFn<E> export function defineEmits<TypeEmit>(): TypeEmit /** * Vue `<script setup>` compiler macro for declaring a component's exposed * instance properties when it is accessed by a parent component via template * refs. * * `<script setup>` components are closed by default - i.e. variables inside * the `<script setup>` scope is not exposed to parent unless explicitly exposed * via `defineExpose`. * * This is only usable inside `<script setup>`, is compiled away in the * output and should **not** be actually called at runtime. */ export function defineExpose< Exposed extends Record<string, any> = Record<string, any> >(exposed?: Exposed): void type NotUndefined<T> = T extends undefined ? never : T type InferDefaults<T> = { [K in keyof T]?: InferDefault<T, NotUndefined<T[K]>> } type InferDefault<P, T> = T extends | null | number | string | boolean | symbol | Function ? T | ((props: P) => T) : (props: P) => T type PropsWithDefaults<Base, Defaults> = Base & { [K in keyof Defaults]: K extends keyof Base ? NotUndefined<Base[K]> : never } /** * Vue `<script setup>` compiler macro for providing props default values when * using type-based `defineProps` declaration. * * Example usage: * ```ts * withDefaults(defineProps<{ * size?: number * labels?: string[] * }>(), { * size: 3, * labels: () => ['default label'] * }) * ``` * * This is only usable inside `<script setup>`, is compiled away in the output * and should **not** be actually called at runtime. */ export function withDefaults<Props, Defaults extends InferDefaults<Props>>( props: Props, defaults: Defaults ): PropsWithDefaults<Props, Defaults> // make them global type _defineProps = typeof defineProps type _defineEmits = typeof defineEmits type _defineExpose = typeof defineExpose type _withDefaults = typeof withDefaults declare global { const defineProps: _defineProps const defineEmits: _defineEmits const defineExpose: _defineExpose const withDefaults: _withDefaults }