Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
10 lines
488 B
Plaintext
10 lines
488 B
Plaintext
import { entityKind } from "../entity.cjs";
|
|
import type { ColumnsSelection } from "../sql/sql.cjs";
|
|
import { View } from "../sql/sql.cjs";
|
|
export declare abstract class SQLiteViewBase<TName extends string = string, TExisting extends boolean = boolean, TSelection extends ColumnsSelection = ColumnsSelection> extends View<TName, TExisting, TSelection> {
|
|
static readonly [entityKind]: string;
|
|
_: View<TName, TExisting, TSelection>['_'] & {
|
|
viewBrand: 'SQLiteView';
|
|
};
|
|
}
|