UNPKG

react-native-drawing

Version:

A React Native library that provides a canvas to perform drawing actions

13 lines (12 loc) 446 B
import { Ack, AckInterface } from './Ack'; import { SendDataFunction } from './SendDataFunction'; export declare class ReceivedAck extends Ack<ReceivedArgs, void, '_RECEIVED_'> { protected readonly token = "_RECEIVED_"; constructor(sendData: SendDataFunction); protected makeChoice(args: ReceivedArgs, ackInterface: AckInterface<void>): void; private static fixCodecStruct; } interface ReceivedArgs { id: number; } export {};