init commit
This commit is contained in:
13
remotion/node_modules/@remotion/media-parser/dist/get-location.d.ts
generated
vendored
Normal file
13
remotion/node_modules/@remotion/media-parser/dist/get-location.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { ParserState } from './state/parser-state';
|
||||
export type MediaParserLocation = {
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
altitude: number | null;
|
||||
horizontalAccuracy: number | null;
|
||||
};
|
||||
export declare function parseLocation(locationString: string): {
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
altitude: number | null;
|
||||
} | null;
|
||||
export declare const getLocation: (state: ParserState) => MediaParserLocation | null;
|
||||
Reference in New Issue
Block a user