feat: add CanBeSource type

This commit is contained in:
Prizm 2026-08-06 09:40:12 -05:00 committed by GitHub
parent f3bfc65607
commit b6050515af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,7 @@ local vide = require "@self/src/lib"
export type source<T> = vide.source<T>
export type Source<T> = vide.Source<T>
export type CanBeSource<T> = read.CanBeSource<T>
export type context<T> = vide.context<T>
export type Context<T> = vide.Context<T>
export type Instances = vide.Instances