Skip to content

Commit

Permalink
0.0.850
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Nov 12, 2024
1 parent 7da523f commit 610d4ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ export class Yield {
#to: string;
async to(guid: string){
this.#to = guid;
const objToPipe = await this.#yield();
}

async yield() : Promise<any>{
async #yield() : Promise<any>{
return new Promise(async (resolve, reject) => {
const {draw} = await import('./XV/draw.js');
const drawn = await draw(this.schema);
Expand Down

0 comments on commit 610d4ce

Please sign in to comment.