Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,17 @@
export type SerializedJSONWithCustomFields = {
serializedString: string;
customDateUsed: boolean;
customFileUsed: boolean;
mapUsed: boolean;
setUsed: boolean;
};
export declare const DATE_TOKEN = "remotion-date:";
export declare const FILE_TOKEN = "remotion-file:";
export declare const serializeJSONWithSpecialTypes: ({ data, indent, staticBase, }: {
data: Record<string, unknown>;
indent: number | undefined;
staticBase: string | null;
}) => SerializedJSONWithCustomFields;
export declare const deserializeJSONWithSpecialTypes: <T = Record<string, unknown>>(data: string) => T;
export declare const serializeThenDeserialize: (props: Record<string, unknown>) => Record<string, unknown>;
export declare const serializeThenDeserializeInStudio: (props: Record<string, unknown>) => Record<string, unknown>;