UNPKG

427 BTypeScriptView Raw
1export { ImageSymbolEffects } from './symbol-effects-common';
2
3/**
4 * iOS only
5 * Symbol effects: https://developer.apple.com/documentation/symbols?language=objc
6 */
7export class ImageSymbolEffect {
8 effect?: NSSymbolEffect;
9 options?: NSSymbolEffectOptions;
10 completion?: (context: UISymbolEffectCompletionContext) => void;
11 constructor(symbol: NSSymbolEffect);
12 static fromSymbol(symbol: string): ImageSymbolEffect | null;
13}