UNPKG

rx-player

Version:
29 lines 1.36 kB
/** * Copyright 2015 CANAL+ Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ declare const REGXP_TIME_COLON_FRAMES: RegExp; declare const REGXP_TIME_COLON: RegExp; declare const REGXP_TIME_COLON_MS: RegExp; declare const REGXP_TIME_FRAMES: RegExp; declare const REGXP_TIME_TICK: RegExp; declare const REGXP_TIME_HMS: RegExp; declare const REGXP_PERCENT_VALUES: RegExp; declare const REGXP_LENGTH: RegExp; declare const REGXP_8_HEX_COLOR: RegExp; declare const REGXP_4_HEX_COLOR: RegExp; declare const REGXP_RGB_COLOR: RegExp; declare const REGXP_RGBA_COLOR: RegExp; export { REGXP_4_HEX_COLOR, REGXP_8_HEX_COLOR, REGXP_RGB_COLOR, REGXP_RGBA_COLOR, REGXP_LENGTH, REGXP_PERCENT_VALUES, REGXP_TIME_COLON, REGXP_TIME_COLON_FRAMES, REGXP_TIME_COLON_MS, REGXP_TIME_FRAMES, REGXP_TIME_HMS, REGXP_TIME_TICK, }; //# sourceMappingURL=regexps.d.ts.map