mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-12-20 09:42:48 +00:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
export default class Store {
|
|
private data: Record<string, any> = {};
|
|
|
|
public set(key: string, value: any) {
|
|
this.data[key] = value;
|
|
}
|
|
|
|
public get(key: string) {
|
|
return this.data[key];
|
|
}
|
|
}
|