-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
8,033 additions
and
2,034 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { type Config } from 'eslint-config-cityssm'; | ||
declare const config: Config; | ||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import eslintConfigCityssm, { cspellWords, tseslint } from 'eslint-config-cityssm'; | ||
const config = tseslint.config(...eslintConfigCityssm, { | ||
rules: { | ||
'@cspell/spellchecker': [ | ||
'warn', | ||
{ | ||
cspell: { | ||
words: [...cspellWords, 'naics', 'wsib'] | ||
} | ||
} | ||
] | ||
} | ||
}); | ||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import eslintConfigCityssm, { | ||
type Config, | ||
cspellWords, | ||
tseslint | ||
} from 'eslint-config-cityssm' | ||
|
||
const config = tseslint.config(...eslintConfigCityssm, { | ||
rules: { | ||
'@cspell/spellchecker': [ | ||
'warn', | ||
{ | ||
cspell: { | ||
words: [...cspellWords, 'naics', 'wsib'] | ||
} | ||
} | ||
] | ||
} | ||
}) as Config | ||
|
||
export default config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
import type { WSIBClearance_Failure, WSIBClearance_Success } from './types.js'; | ||
/** | ||
* Retrieves a WSIB clearance certificate from the WSIB website. | ||
* @param accountNumber - The WSIB account number | ||
* @returns The WSIB clearance certificate data. | ||
*/ | ||
export declare function getClearanceByAccountNumber(accountNumber: string): Promise<WSIBClearance_Failure | WSIBClearance_Success>; | ||
/** | ||
* Closes the cached web browser. | ||
*/ | ||
export declare function cleanUpBrowser(): Promise<void>; | ||
export default getClearanceByAccountNumber; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.