- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
9 lines
365 B
TypeScript
9 lines
365 B
TypeScript
import { BinaryTarget } from './binaryTargets';
|
|
/**
|
|
* Gets Node-API Library name depending on the binary target
|
|
* @param binaryTarget
|
|
* @param type `fs` gets name used on the file system, `url` gets the name required to download the library from S3
|
|
* @returns
|
|
*/
|
|
export declare function getNodeAPIName(binaryTarget: BinaryTarget, type: 'url' | 'fs'): string;
|