Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
29
Frontend-Learner/node_modules/is64bit/index.d.ts
generated
vendored
Normal file
29
Frontend-Learner/node_modules/is64bit/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/**
|
||||
Check whether operating system CPU architecture is 64-bit or 32-bit.
|
||||
|
||||
@example
|
||||
```
|
||||
import {is64bit} from 'is64bit';
|
||||
|
||||
// On ARM64 macOS
|
||||
console.log(await is64bit());
|
||||
//=> true
|
||||
```
|
||||
*/
|
||||
export function is64bit(): Promise<boolean>;
|
||||
|
||||
/**
|
||||
Check whether operating system CPU architecture is 64-bit or 32-bit.
|
||||
|
||||
**Note**: Prefer the async version for browser or cross-platform usage as it has a more reliable check.
|
||||
|
||||
@example
|
||||
```
|
||||
import {is64bitSync} from 'is64bit';
|
||||
|
||||
// On ARM64 macOS
|
||||
console.log(is64bitSync());
|
||||
//=> true
|
||||
```
|
||||
*/
|
||||
export function is64bitSync(): boolean;
|
||||
Loading…
Add table
Add a link
Reference in a new issue