UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

13 lines (12 loc) 449 B
import type { Skia } from "../skia/types"; import { Container, StaticContainer } from "./StaticContainer"; import "../skia/NativeSetup"; import "../views/api"; declare class ReanimatedContainer extends Container { private nativeId; private mapperId; constructor(Skia: Skia, nativeId: number); redraw(): void; } export declare const createContainer: (Skia: Skia, nativeId: number) => StaticContainer | ReanimatedContainer; export {};