We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 014a524 commit bdcd6e1Copy full SHA for bdcd6e1
packages/api/doc/terminal.md
@@ -0,0 +1,20 @@
1
+# File System
2
+
3
+- Name in Remix: `terminal`
4
5
+|Type |Name |Description |
6
+|---------|-----------------------|------------|
7
+|_method_ |`log` |Log text to the terminal
8
9
+## Examples
10
11
+### Methods
12
+`log`: Get the name of the current file selected.
13
+```typescript
14
+await client.terminal.log({ type: 'info', value: 'I am a string' })
15
+// OR
16
+await client.call('terminal',{ type: 'info', value: 'I am a string' })
17
+```
18
19
20
+> Type Definitions can be found [here](../src/lib/terminal/api.ts)
0 commit comments