UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

7 lines (6 loc) 431 B
import type { Command } from "../Core"; import { CommandType } from "../Core"; import type { DrawingContext } from "../DrawingContext"; export declare const isPushPathEffect: (command: Command) => command is Command<CommandType.PushPathEffect>; export declare const composePathEffects: (ctx: DrawingContext) => void; export declare const pushPathEffect: (ctx: DrawingContext, command: Command<CommandType.PushPathEffect>) => void;