You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
761 B
40 lines
761 B
'use strict';
|
|
import { isAuthorized, checkAudioVideo } from './func';
|
|
import { AuthorizationCode } from './authCode';
|
|
import {
|
|
ApiTable, VideoServeApi,
|
|
RouteTable,
|
|
AuthRequest, AxyRequest, IotVideoServerRequest, YingshiRequest,
|
|
basicAction,RouteRequest
|
|
} from './webapi'
|
|
import {
|
|
YS_PTZ_DIRECTION, ysptz,
|
|
gbptz
|
|
} from './videoCloudControl';
|
|
import {
|
|
uploadVoice2Yingshi, sendVoice2YingshiCamera
|
|
} from './videoVoice';
|
|
|
|
export {
|
|
isAuthorized,
|
|
checkAudioVideo,
|
|
AuthorizationCode,
|
|
|
|
ApiTable,
|
|
VideoServeApi,
|
|
RouteTable,
|
|
AuthRequest,
|
|
AxyRequest,
|
|
IotVideoServerRequest,
|
|
YingshiRequest,
|
|
basicAction,
|
|
RouteRequest,
|
|
|
|
YS_PTZ_DIRECTION,
|
|
ysptz,
|
|
|
|
uploadVoice2Yingshi,
|
|
sendVoice2YingshiCamera,
|
|
|
|
gbptz,
|
|
}
|