@pilotdev/pilot-web-2d 26.3.0 → 26.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -819,8 +819,13 @@ export class AnnotationManager {
|
|
|
819
819
|
clearAnnotations(): void;
|
|
820
820
|
isRendered(annotation: IAnnotation): Promise<boolean>;
|
|
821
821
|
}
|
|
822
|
+
export class AccessManager {
|
|
823
|
+
setIsReadonly(value: boolean): void;
|
|
824
|
+
getIsReadonly(): boolean;
|
|
825
|
+
}
|
|
822
826
|
export class AnnotationsExtension extends Extension {
|
|
823
827
|
get annotationManager(): AnnotationManager;
|
|
828
|
+
get accessManager(): AccessManager;
|
|
824
829
|
load(): boolean | Promise<boolean>;
|
|
825
830
|
getName(): string;
|
|
826
831
|
onToolbarCreated(toolbar: Toolbar): void;
|