Urara-Blog/node_modules/.pnpm-store/v3/files/dc/8c19ec2743b26edd9bf7697317464afdac16654b5e072fc84ef43f50fb3d7d80d480fc2f6c6502721363afeb27daa09b8fbbfbe346deb3ad064ea5750b17fa
2022-08-14 01:14:53 +08:00

14 lines
354 B
Text

export = sameParent;
/** @typedef {import('postcss').AnyNode & {parent?: Child}} Child */
/**
* @param {Child} nodeA
* @param {Child} nodeB
* @return {boolean}
*/
declare function sameParent(nodeA: Child, nodeB: Child): boolean;
declare namespace sameParent {
export { Child };
}
type Child = import('postcss').AnyNode & {
parent?: Child;
};