* feat: add eslint-plugin-tsdoc * feat(doc): update current jsdoc to tsdoc specification * chore: update deps * feat: update warn to error for jsdoc and tsdoc * chore(doc): lint
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
interface CESMessage {
|
|
/**
|
|
* Opens the CES page for the specified instructor
|
|
*
|
|
* @param data - First and last name of the instructor
|
|
*/
|
|
openCESPage: (data: { instructorFirstName: string; instructorLastName: string }) => chrome.tabs.Tab;
|
|
}
|
|
|
|
export default CESMessage;
|