Skip to content

Commit

Permalink
Merge branch 'baseline' of https://github.com/bahrus/be-committed int…
Browse files Browse the repository at this point in the history
…o baseline
  • Loading branch information
bahrus committed Sep 28, 2024
1 parent 8150c74 commit 9a02dbe
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions be-committed.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,40 @@
import { BE } from 'be-enhanced/BE.js';
import { propInfo, resolved, rejected } from 'be-enhanced/cc.js';

/** @import {BEConfig, IEnhancement, BEAllProps} from './ts-refs/be-enhanced/types.d.ts' */
/** @import {Actions, PAP, AP, BAP, ObservingParameters} from './ts-refs/be-committed/types' */

/**
* @implements {Actions}
* @implements {EventListenerObject}
*/
class BeCommitted extends BE {
/**
* @type {BEConfig<BAP, Actions & IEnhancement, any>}
*/
static config = {
propInfo:{
...propInfo
}
}

/**
*
* @param {BAP} self
*/
hydrate(self){
return /** @type {PAP} */({
});
}

/**
*
* @param {KeyboardEvent} e
*/
handleEvent(e){

}
}

await BeCommitted.bootUp();
export {BeCommitted}
2 changes: 1 addition & 1 deletion ts-refs
Submodule ts-refs updated from 238dc3 to 3c7273

0 comments on commit 9a02dbe

Please sign in to comment.