Skip to content

Commit

Permalink
change: flat exports に全面移行
Browse files Browse the repository at this point in the history
  • Loading branch information
tai-kun committed Oct 19, 2024
1 parent 3f234b3 commit 0f7d114
Show file tree
Hide file tree
Showing 212 changed files with 3,088 additions and 3,096 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ try {

```ts
import { initSurreal } from "@tai-kun/surrealdb";
import Client from "@tai-kun/surrealdb/clients/standard";
import HttpEngine from "@tai-kun/surrealdb/engines/http";
import JsonFormatter from "@tai-kun/surrealdb/formatters/json";
import Client from "@tai-kun/surrealdb/standard-client";
import HttpEngine from "@tai-kun/surrealdb/http-engine";
import JsonFormatter from "@tai-kun/surrealdb/json-formatter";

const { Surreal } = initSurreal({
Client: Client,
Expand Down
12 changes: 6 additions & 6 deletions docs/cache/ja2en/content/v2/api/data/bound-excluded.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ See [`Range`](/v2/api/data/range).
### Import

```ts
import { BoundExcluded } from "@tai-kun/surrealdb/data-types/decode-only";
import { BoundExcluded } from "@tai-kun/surrealdb/data-types/encodable";
import { BoundExcluded } from "@tai-kun/surrealdb/data-types/standard";
import { BoundExcluded } from "@tai-kun/surrealdb/decodeonly-datatypes";
import { BoundExcluded } from "@tai-kun/surrealdb/encodable-datatypes";
import { BoundExcluded } from "@tai-kun/surrealdb/standard-datatypes";
```

### `.constructor()`
Expand All @@ -29,12 +29,12 @@ new BoundExcluded(source: unknown);

##### `source`

This argument is under investigation and its specific usage is not yet documented.
Under investigation.

#### Returns

When called via `new`, `BoundExcluded` returns its instance.
When called through `new`, `BoundExcluded` returns its instance.

### `.value` <Badge variant="instance" /><Badge variant="property" /><Badge variant="decodeonly" />

This property is under investigation and its specific usage is not yet documented.
Under investigation.
8 changes: 4 additions & 4 deletions docs/cache/ja2en/content/v2/api/data/bound-included.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ See [`Range`](/v2/api/data/range).
### Import

```ts
import { BoundIncluded } from "@tai-kun/surrealdb/data-types/decode-only";
import { BoundIncluded } from "@tai-kun/surrealdb/data-types/encodable";
import { BoundIncluded } from "@tai-kun/surrealdb/data-types/standard";
import { BoundIncluded } from "@tai-kun/surrealdb/decodeonly-datatypes";
import { BoundIncluded } from "@tai-kun/surrealdb/encodable-datatypes";
import { BoundIncluded } from "@tai-kun/surrealdb/standard-datatypes";
```

### `.constructor()`
Expand All @@ -31,7 +31,7 @@ new BoundIncluded(source: unknown);

Under investigation.

#### Returns
#### Return Value

When called via `new`, `BoundIncluded` returns its instance.

Expand Down
Loading

0 comments on commit 0f7d114

Please sign in to comment.