diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 9f4697c2fd0f1300691048849902b61be6aa05c8..fd5e6aa3c902a0fd098fa3bac0abcc81164ec190 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -120,6 +120,41 @@ declare const Extend: MethodDecorator & ((value: any) => MethodDecorator); */ declare const CustomDialog: ClassDecorator; +/** + * Defining Consume PropertyDecorator. + * @since 7 + */ +declare const LocalStorageLink: PropertyDecorator & ((value: string) => PropertyDecorator); + +/** + * Defining Consume PropertyDecorator. + * @since 7 + */ +declare const LocalStorageProp: PropertyDecorator & ((value: string) => PropertyDecorator); + +/** + * Defining LocalStorage. + * @since 7 + */ +declare const LocalStorage: LocalStorageOption; + +/** + * Defines the data type of the interface restriction. + * @since 7 + */ +declare interface LocalStorageOption{ + /** + * Set callback. + * @since 7 + */ + ({}) : any; + /** + * Set GetShared. + * @since 7 + */ + GetShared?: any; +} + /** * Defines the data type of the interface restriction. * @since 7