Skip to content

Commit

Permalink
docs: add license to source
Browse files Browse the repository at this point in the history
  • Loading branch information
TomokiMiyauci committed Sep 30, 2022
1 parent 67c8896 commit c27a911
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022-latest TomokiMiyauci. All rights reserved. MIT license.
// This module is browser compatible.

export { Result } from "./results.ts";
export {
type Container,
Expand Down
3 changes: 3 additions & 0 deletions results.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022-latest TomokiMiyauci. All rights reserved. MIT license.
// This module is browser compatible.

import {
ErrContainer,
OkContainer,
Expand Down
3 changes: 3 additions & 0 deletions types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022-latest TomokiMiyauci. All rights reserved. MIT license.
// This module is browser compatible.

/** Container API. */
export interface Container {
/** The contained value. */
Expand Down
3 changes: 3 additions & 0 deletions utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022-latest TomokiMiyauci. All rights reserved. MIT license.
// This module is browser compatible.

import { Result } from "./results.ts";
import { ErrContainer, OkContainer, ResultContainer } from "./types.ts";

Expand Down

0 comments on commit c27a911

Please sign in to comment.