Paul Procopiou

Results 5 comments of Paul Procopiou

Datastore schemas are so dynamic, down to the point of defining indexes per record/entity, as opposed to indexes on the entire Table/Kind. So I can create one record with an...

I'm new to IK in general (learning about it, and planning to use it on a project), but I have a keen interest in API design, so let me see...

As it is currently, I can only create Google Functions with names matching their handlers. Example: ```javascript exports.http = (request, response) => { response.status(200).send('Hello World!') } ``` ```yaml service: my-service...

I have to agree with FND and wouldn't consider this a bug either. If I understand correctly, this library only handles number [positional notation](https://en.wikipedia.org/wiki/Positional_notation). As such, only numbers can be...

This worked for me: ```ts // BaseClass.ts import EventEmitter from "eventemitter3"; export interface EventTypes { foo: () => void; bar: (error: Error) => void; } export class BaseClass extends EventEmitter...