-
Notifications
You must be signed in to change notification settings - Fork 88
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
1 parent
accc345
commit 61f106b
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
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,45 @@ | ||
// ------------------------------------------------------------------------- | ||
// Welcome to the sketchbook of our library's type definitions. | ||
//-------------------------------------------------------------------------- | ||
// | ||
// Like a promise of "we'll do it tomorrow," we've sketched out the outlines but the details? | ||
// Well, they will be defined later... This finger never eats but always says 'I'll pick the tab next time!' | ||
// | ||
// Feel adventurous? Help us fill in the gaps – don't wait for tomorrow! | ||
// ------------------------------------------------------------------------- | ||
|
||
export class Agent { | ||
|
||
[key: string]: any; | ||
|
||
constructor(props?: Record<string, any>) { | ||
Object.assign(this, props); | ||
} | ||
|
||
// Implementation details will be defined later... | ||
// Yes, this is the 'I’ll clean my desk next week' kind of later. | ||
} | ||
|
||
export class Task { | ||
|
||
[key: string]: any; | ||
|
||
constructor(props?: Record<string, any>) { | ||
Object.assign(this, props); | ||
} | ||
|
||
// Implementation details will be defined later... | ||
// Like that gym membership we all get in January. | ||
} | ||
|
||
export class Team { | ||
|
||
[key: string]: any; | ||
|
||
constructor(props?: Record<string, any>) { | ||
Object.assign(this, props); | ||
} | ||
|
||
// Implementation details will be defined later... | ||
// We're scheduling a meeting to plan the meeting about this. | ||
} |