mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
/**
|
|
* @name isRiscV
|
|
* @summary Tests if the input has a RISC-V header
|
|
* @description
|
|
* Checks to see if the input Uint8Array contains a valid RISC-V header
|
|
*/
|
|
export declare function isRiscV(bytes: unknown): bytes is Uint8Array;
|