Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+17
@@ -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>;
|
||||
Reference in New Issue
Block a user