[ci] format
This commit is contained in:
parent
9bec6bc410
commit
10550f5ee2
5 changed files with 10 additions and 6 deletions
|
@ -11,8 +11,8 @@ import {
|
|||
voidElementNames,
|
||||
} from './index.js';
|
||||
import { HTMLParts } from './render/common.js';
|
||||
import { ScopeFlags } from './render/util.js';
|
||||
import type { ComponentIterable } from './render/component';
|
||||
import { ScopeFlags } from './render/util.js';
|
||||
|
||||
const ClientOnlyPlaceholder = 'astro-client-only';
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@ import type { HeadAndContent } from './head-and-content';
|
|||
import type { RenderTemplateResult } from './render-template';
|
||||
|
||||
import { HTMLParts } from '../common.js';
|
||||
import { ScopeFlags } from '../util.js';
|
||||
import { isHeadAndContent } from './head-and-content.js';
|
||||
import { renderAstroTemplateResult } from './render-template.js';
|
||||
import { ScopeFlags } from '../util.js';
|
||||
|
||||
export type AstroFactoryReturnValue = RenderTemplateResult | Response | HeadAndContent;
|
||||
|
||||
|
|
|
@ -21,7 +21,11 @@ export function isSlotString(str: string): str is any {
|
|||
return !!(str as any)[slotString];
|
||||
}
|
||||
|
||||
export async function renderSlot(result: SSRResult, slotted: string, fallback?: any): Promise<string> {
|
||||
export async function renderSlot(
|
||||
result: SSRResult,
|
||||
slotted: string,
|
||||
fallback?: any
|
||||
): Promise<string> {
|
||||
if (slotted) {
|
||||
result.scope |= ScopeFlags.Slot;
|
||||
let iterator = renderChild(slotted);
|
||||
|
|
|
@ -132,5 +132,5 @@ export function renderElement(
|
|||
export const ScopeFlags = {
|
||||
Astro: 1 << 0,
|
||||
JSX: 1 << 1,
|
||||
Slot: 1 << 2
|
||||
Slot: 1 << 2,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue