@types/vue-ls
Version:
TypeScript definitions for vue-ls
62 lines (48 loc) • 1.72 kB
Markdown
# Installation
> `npm install --save @types/vue-ls`
# Summary
This package contains type definitions for vue-ls (https://github.com/RobinCK/vue-ls#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vue-ls.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vue-ls/index.d.ts)
````ts
import _Vue, { PluginObject } from "vue";
declare module "vue/types/vue" {
interface Vue {
$ls: WebStorage;
}
interface VueConstructor {
ls: WebStorage;
}
}
export enum Types {
Session = "session",
Local = "local",
Memory = "memory",
}
export interface Options {
namespace?: string | undefined;
name?: string | undefined;
storage?: Types | undefined;
}
export class WebStorage {
length: number;
constructor(storage: Types);
get(name: string, def?: any): any;
set(name: string, value: any, expire?: number): void;
key(index: number): string | null;
remove(name: string): void;
clear(): void;
on(name: string, callback: () => void): void;
off(name: string, callback: () => void): void;
setOptions(options?: Options): void;
}
declare const VueStorage: PluginObject<Options>;
// forced to use deault export, the reason is discussed on https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38653#discussion_r331455390
export default VueStorage;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 15:11:36 GMT
* Dependencies: [vue](https://npmjs.com/package/vue)
# Credits
These definitions were written by [Prateek Malhotra](https://github.com/someone1), and [Oleg Spakov](https://github.com/lexasss).