UNPKG

@canboat/canboatjs

Version:

Native javascript version of canboat

46 lines 2.22 kB
/** * Copyright 2018 Scott Bender (scott@scottbender.net) * * 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. */ import { CanID } from './canId'; export declare const createDebug: (name: string, appOptions?: any) => any; export declare function getPlainPGNs(buffer: Buffer): Buffer<ArrayBuffer>[]; export declare function isPGNProprietary(pgn: number): boolean; export declare function compute0183Checksum(sentence: string): string; export declare function binToActisense(pgn: CanID, timestamp: string, data: Buffer, length: number): string; export declare const trimWrap: import("lodash/fp").LodashTrimChars1x1; export declare const rmChecksum: (str: string) => string; export declare const arrBuff: (arr: string[], encoding?: BufferEncoding) => Buffer<ArrayBuffer>; export declare const hexByte: (x: number) => string; export declare const byteString: (data: Buffer, separator?: string) => string; export declare const byteStringArray: (data: Buffer) => any[]; export type FilterOptions = { pgn?: number | string | (number | string)[] | undefined; id?: string | string[] | undefined; manufacturer?: string | string[] | undefined; src?: number | string | (number | string)[] | undefined; dst?: number | string | (number | string)[] | undefined; filter?: string | undefined; }; export type FilterConfig = { pgn_filter?: number[]; id_filter?: string[]; manufacturer_filter?: string[]; src_filter?: number[]; dst_filter?: number[]; js_filter?: (pgn: any) => boolean; }; export declare const setupFilters: (filterOptions: FilterOptions) => FilterConfig; export declare const filterPGN: (pgn: any, filter: FilterConfig) => boolean; //# sourceMappingURL=utilities.d.ts.map