9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
import { TurboSyncConfigObject } from "../types";
|
|
type Params = {
|
|
dirs?: string[];
|
|
files?: string[];
|
|
config: TurboSyncConfigObject;
|
|
};
|
|
export default function getLatestSource({ dirs, files, config, }: Params): string | undefined;
|
|
export {};
|