1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-25 08:35:02 +02:00

fix: frontend-builderのutils.tsが型エラーを起こしていたのを修正 (#17649)

This commit is contained in:
おさむのひと
2026-07-04 17:44:42 +09:00
committed by GitHub
parent c423bf92a8
commit 426f6748e5

View File

@@ -8,5 +8,5 @@ export function assertNever(x: never): never {
throw new Error(`Unexpected type: ${(x as any)?.type ?? x}`);
}
export function assertType<T>(_node: unknown): asserts node is T {
export function assertType<T>(_node: unknown): asserts _node is T {
}