property Process.pid Usage in Deno```typescript import { type Process } from "node:node__process.d.ts"; ``` The `process.pid` property returns the PID of the process. ```js import { pid } from 'node:process'; console.log(`This process is pid ${pid}`); ``` Type number