diff --git a/api/arkui/SymbolGlyphModifier.d.ets b/api/arkui/SymbolGlyphModifier.static.d.ets similarity index 77% rename from api/arkui/SymbolGlyphModifier.d.ets rename to api/arkui/SymbolGlyphModifier.static.d.ets index c5b662e44e9c726dc187a65feb192ddcf99a9867..c5cdb1e8b70cda2756bd11f441b43e4f2e8d0f20 100644 --- a/api/arkui/SymbolGlyphModifier.d.ets +++ b/api/arkui/SymbolGlyphModifier.static.d.ets @@ -12,20 +12,31 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + /** * @file * @kit ArkUI + * @arkts 1.2 */ import { AttributeModifier } from './component/common'; import { SymbolGlyphAttribute } from './component/symbolglyph'; +import { Resource } from '../global/resource'; /** * Defines SymbolGlyph Modifier * * @implements SymbolGlyphAttribute, AttributeModifier * @syscap SystemCapability.ArkUI.ArkUI.Full - * @atomicservice * @since 20 */ -export declare class SymbolGlyphModifier implements SymbolGlyphAttribute, AttributeModifier {} +export declare class SymbolGlyphModifier implements SymbolGlyphAttribute, AttributeModifier { + /** + * constructor + * + * @param { Resource } [src] + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @since 20 + */ + constructor(src?: Resource); +}