deptyped

Results 29 issues of deptyped

```python from jsonrpcserver.methods import Methods # During initialization, Methods class receives a list of decorators admin_methods = Methods(decorators=[require_user, require_role('admin')]) # When adding a new method, the function will be wrapped...

- [x] Run codestyle check (#3) - [ ] Run tests (#4) - [x] Build Docker image

https://deno.land/[email protected]/basics/import_maps https://deno.land/[email protected]/node/how_to_with_npm/prisma

For example, to iterate over all users: ```ts const users = await prisma.user .paginate() .toStream({ limit: 25, // batch size }); for await (const user of users) { console.log(user); //...

For example, to find all users between cursors "1" and "100" (exclusive): ```ts const [users, meta] = await prisma.user .paginate() .withCursor({ after: "1", before: "100" }); ```

- Slots API ```vue import { BiometricManager } from 'vue-tg' Biometric init... Biometric is not supported on the current device Biometric access is not granted Biometric is ready to use...

```vue import { useWebAppCloudStorage } from 'vue-tg' const valueRef = useWebAppCloudStorageItem("some-key", "initial value", { writeDebounce: 500, // ms serializer: { read(raw: string): T write(value: T): string }, onError: (error: unknown)...

enhancement

```vue import { Popup, PopupButton } from 'vue-tg' function handleAgreeButton() { // ... } function handleDisagreeButton() { // ... } ```

enhancement