jsketcher/web/app/cad/attributes/attributesService.ts
2022-06-25 15:19:48 -07:00

19 lines
293 B
TypeScript

import {LazyStreams} from "lstream/lazyStreams";
export class AttributesService {
streams = new LazyStreams<ModelAttributes>(id => ({
hidden: false,
label: null,
color: null
}));
}
export interface ModelAttributes {
hidden: boolean;
label: string;
color: string;
}