9 lines
124 B
TypeScript
9 lines
124 B
TypeScript
|
export class Settings {
|
||
|
_docId: string | null = null;
|
||
|
|
||
|
docId(id: string) {
|
||
|
this._docId = id;
|
||
|
return this;
|
||
|
}
|
||
|
}
|