Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import type { ParserState } from './state/parser-state';
|
||||
export type MediaParserDimensions = {
|
||||
width: number;
|
||||
height: number;
|
||||
};
|
||||
export type ExpandedDimensions = MediaParserDimensions & {
|
||||
rotation: number;
|
||||
unrotatedWidth: number;
|
||||
unrotatedHeight: number;
|
||||
};
|
||||
export declare const getDimensions: (state: ParserState) => ExpandedDimensions | null;
|
||||
export declare const hasDimensions: (state: ParserState) => boolean;
|
||||
Reference in New Issue
Block a user