6 lines
143 B
Plaintext
6 lines
143 B
Plaintext
|
export type PushCallbackOptions = {
|
||
|
apiName: string
|
||
|
success: (res?: any) => void
|
||
|
fail: (errCode: number, errMsg: string) => void
|
||
|
}
|