export type PushCallbackOptions = {
    apiName: string
    success: (res?: any) => void
    fail: (errCode: number, errMsg: string) => void
}
