12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
export declare const useSandpackShellStdout: ({ clientId, maxMessageCount, resetOnPreviewRestart, }: {
|
|
clientId?: string | undefined;
|
|
maxMessageCount?: number | undefined;
|
|
resetOnPreviewRestart?: boolean | undefined;
|
|
}) => {
|
|
logs: Array<{
|
|
id: string;
|
|
data: string;
|
|
}>;
|
|
reset: () => void;
|
|
};
|