mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 10:01:08 +08:00
14 lines
427 B
TypeScript
14 lines
427 B
TypeScript
export { ImageSymbolEffects } from './symbol-effects-common';
|
|
|
|
/**
|
|
* iOS only
|
|
* Symbol effects: https://developer.apple.com/documentation/symbols?language=objc
|
|
*/
|
|
export class ImageSymbolEffect {
|
|
effect?: NSSymbolEffect;
|
|
options?: NSSymbolEffectOptions;
|
|
completion?: (context: UISymbolEffectCompletionContext) => void;
|
|
constructor(symbol: NSSymbolEffect);
|
|
static fromSymbol(symbol: string): ImageSymbolEffect | null;
|
|
}
|