diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 9f4697c2fd0f1300691048849902b61be6aa05c8..4fb39b790255ce269103cc2f50079928cb585b3b 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -22,7 +22,7 @@ declare const Component: ClassDecorator; * Defining Entry ClassDecorator. * @since 7 */ -declare const Entry: ClassDecorator; +declare const Entry: ClassDecorator & ((value: any) => ClassDecorator); /** * Defining Observed ClassDecorator. @@ -120,6 +120,37 @@ declare const Extend: MethodDecorator & ((value: any) => MethodDecorator); */ declare const CustomDialog: ClassDecorator; +/** + * Defining LocalStorageLink PropertyDecorator. + * @since 8 + */ +declare const LocalStorageLink: PropertyDecorator & ((value: string) => PropertyDecorator); + +/** + * Defining LocalStorageProp PropertyDecorator. + * @since 8 + */ +declare const LocalStorageProp: PropertyDecorator & ((value: string) => PropertyDecorator); + + +/** + * Defining LocalStorage. + * @since 8 + */ +declare class LocalStorage { + /** + * constructor. + * @since 8 + */ + constructor(value?: Object); + + /** + * Set GetShared. + * @since 8 + */ + static GetShared(): any; +} + /** * Defines the data type of the interface restriction. * @since 7