mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
9 lines
271 B
TypeScript
9 lines
271 B
TypeScript
import { ImageSymbolEffectCommon } from './symbol-effects-common';
|
|
export { ImageSymbolEffects } from './symbol-effects-common';
|
|
|
|
export class ImageSymbolEffect extends ImageSymbolEffectCommon {
|
|
static fromSymbol(symbol: string) {
|
|
return new ImageSymbolEffect();
|
|
}
|
|
}
|