Skip to content

Commit

Permalink
js doc type missing
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Jan 22, 2024
1 parent 8eb7d0c commit 2d88843
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion utilities.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { DocketDateString } from './types.js';
export declare function normalizeCourtDate(courtDateString: string): DocketDateString;
/**
* Converts the line item dates on the docket into a standardized format.
* @param itemDateString ex. "1AUG23"
* @param {string} itemDateString ex. "1AUG23"
* @returns {DocketDateString} ex. "2023/08/01"
*/
export declare function normalizeItemDate(itemDateString: string): DocketDateString | undefined;
2 changes: 1 addition & 1 deletion utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function normalizeCourtDate(courtDateString) {
}
/**
* Converts the line item dates on the docket into a standardized format.
* @param itemDateString ex. "1AUG23"
* @param {string} itemDateString ex. "1AUG23"
* @returns {DocketDateString} ex. "2023/08/01"
*/
export function normalizeItemDate(itemDateString) {
Expand Down
2 changes: 1 addition & 1 deletion utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function normalizeCourtDate(courtDateString: string): DocketDateString {

/**
* Converts the line item dates on the docket into a standardized format.
* @param itemDateString ex. "1AUG23"
* @param {string} itemDateString ex. "1AUG23"
* @returns {DocketDateString} ex. "2023/08/01"
*/
export function normalizeItemDate(
Expand Down

0 comments on commit 2d88843

Please sign in to comment.