ladybird/Userland/Libraries/LibWeb/HTML/NavigationTransition.idl

10 lines
298 B
Text
Raw Normal View History

#import <HTML/NavigationType.idl>
#import <HTML/NavigationHistoryEntry.idl>
[Exposed=Window, UseNewAKString]
interface NavigationTransition {
readonly attribute NavigationType navigationType;
readonly attribute NavigationHistoryEntry from;
readonly attribute Promise<undefined> finished;
};