1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

* first action! (#1)

This commit is contained in:
shimataro 2019-09-18 20:39:54 +09:00 committed by GitHub
parent 8deacc95b1
commit ace1e6a69a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3750 changed files with 1155519 additions and 0 deletions

51
node_modules/smart-buffer/typings/utils.d.ts generated vendored Normal file
View file

@ -0,0 +1,51 @@
/// <reference types="node" />
import { SmartBuffer } from './smartbuffer';
/**
* Error strings
*/
declare const ERRORS: {
INVALID_ENCODING: string;
INVALID_SMARTBUFFER_SIZE: string;
INVALID_SMARTBUFFER_BUFFER: string;
INVALID_SMARTBUFFER_OBJECT: string;
INVALID_OFFSET: string;
INVALID_OFFSET_NON_NUMBER: string;
INVALID_LENGTH: string;
INVALID_LENGTH_NON_NUMBER: string;
INVALID_TARGET_OFFSET: string;
INVALID_TARGET_LENGTH: string;
INVALID_READ_BEYOND_BOUNDS: string;
INVALID_WRITE_BEYOND_BOUNDS: string;
};
/**
* Checks if a given encoding is a valid Buffer encoding. (Throws an exception if check fails)
*
* @param { String } encoding The encoding string to check.
*/
declare function checkEncoding(encoding: BufferEncoding): void;
/**
* Checks if a given number is a finite integer. (Throws an exception if check fails)
*
* @param { Number } value The number value to check.
*/
declare function isFiniteInteger(value: number): boolean;
/**
* Checks if a length value is valid. (Throws an exception if check fails)
*
* @param { Number } length The value to check.
*/
declare function checkLengthValue(length: any): void;
/**
* Checks if a offset value is valid. (Throws an exception if check fails)
*
* @param { Number } offset The value to check.
*/
declare function checkOffsetValue(offset: any): void;
/**
* Checks if a target offset value is out of bounds. (Throws an exception if check fails)
*
* @param { Number } offset The offset value to check.
* @param { SmartBuffer } buff The SmartBuffer instance to check against.
*/
declare function checkTargetOffset(offset: number, buff: SmartBuffer): void;
export { ERRORS, isFiniteInteger, checkEncoding, checkOffsetValue, checkLengthValue, checkTargetOffset };