Skip to content

Commit

Permalink
doc: fixed the type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
kurone-kito committed Apr 25, 2021
1 parent b85beb3 commit 7e8d4a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/dantalion-i18n/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ case of an array of strings, the elements separate for each paragraph.
The type definition that the pair of name and detail.

```ts
interface VectorType {
interface DetailsBaseType {
readonly detail: string;
readonly name: string;
}
Expand All @@ -141,7 +141,7 @@ interface VectorType {
The type definition that the name, detail and more descriptions.

```ts
interface VectorType {
interface DetailsType {
readonly detail: string;
readonly name: string;
readonly more: readonly string[];
Expand All @@ -160,7 +160,7 @@ A type definition of a structure that stores a
description of a particular person's personality.

```ts
interface VectorType {
interface PersonalityType {
readonly detail: readonly string[];
readonly keyword: readonly string[];
readonly name: string;
Expand Down

0 comments on commit 7e8d4a1

Please sign in to comment.