Skip to content

Instantly share code, notes, and snippets.

@Lavhe
Lavhe / vue.d.ts
Created September 8, 2017 09:17 — forked from kaorun343/vue.d.ts
interface Array<T> {
$remove(item: T): Array<T>;
$set(index: number, val: T): T;
}
declare namespace vuejs {
interface PropOption {
type?: any;
required?: boolean;