Skip to content

Commit

Permalink
Added @module
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderOMara committed Dec 7, 2024
1 parent 61fd850 commit 43c06ee
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions float/16.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* @module
*
* 16-bit float operations.
*/

let b;

/**
Expand Down
6 changes: 6 additions & 0 deletions float/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/**
* @module
*
* All float operations.
*/

export * from './16.ts';
6 changes: 6 additions & 0 deletions int/24.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* @module
*
* 24-bit integer operations.
*/

/**
* Get 24-bit signed integer.
*
Expand Down
6 changes: 6 additions & 0 deletions int/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/**
* @module
*
* All integer operations.
*/

export * from './24.ts';
6 changes: 6 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
/**
* @module
*
* All DataView operations.
*/

export * from './float/mod.ts';
export * from './int/mod.ts';

0 comments on commit 43c06ee

Please sign in to comment.