Skip to content

Commit

Permalink
✨ feat: 'protected' instead of 'private'
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangechen committed Mar 11, 2024
1 parent c6a499d commit ec32314
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/chili-builder/src/appBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { IVisualFactory } from "chili-vis";

export class AppBuilder {
private _useUI: boolean = false;
private _inits: (() => Promise<void>)[] = [];
private _storage?: IStorage;
private _visualFactory?: IVisualFactory;
private _shapeFactory?: IShapeFactory;
protected readonly _inits: (() => Promise<void>)[] = [];
protected _storage?: IStorage;
protected _visualFactory?: IVisualFactory;
protected _shapeFactory?: IShapeFactory;

useIndexedDB() {
this._inits.push(async () => {
Expand Down

0 comments on commit ec32314

Please sign in to comment.